home *** CD-ROM | disk | FTP | other *** search
- // WinHeader.h
- //
- // Copyright (©) 2000 REAL Software, Inc.
- //
- // This file declares macros and functions needed for Win32 compilation
- // of plugins using the REALbasic Plugin SDK. This file should be
- // set as the prefix file for your Windows (x86) target. In addition,
- // you'll need to add the "Win32-x86 Support" folder to the system
- // access paths.
-
- #ifndef WINHEADER_H
- #define WINHEADER_H
-
- #include <Win32Headers.mch>
- #define nil 0
-
- #include <QTML.h>
- #include <Movies.h>
-
- // We previously provided our own definition of PtInRect. This is now
- // available in QTML, but it's named MacPtInRect. For the sake of
- // backwards compatibility, we define it thusly:
- #define PtInRect MacPtInRect
- // But be careful, as this hides a standard Win32 function.
-
- #endif
-
-